Version

AddClosedCurve(PointF[],Single) Method

Adds a closed curve to this path. A cardinal spline curve is used because the curve travels through each of the points in the array.
Syntax
'Declaration
 
Public Overloads Sub AddClosedCurve( _
   ByVal points() As PointF, _
   ByVal tension As Single _
) 
public void AddClosedCurve( 
   PointF[] points,
   float tension
)

Parameters

points
An array of System.Drawing.PointF structures that represents the points that define the curve.
tension
A value between from 0 through 1 that specifies the amount that the curve bends between points, with 0 being the smallest curve (sharpest corner) and 1 being the smoothest curve.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also